home *** CD-ROM | disk | FTP | other *** search
- //-----------------------------------------
- // PaintHello.cs ⌐ 2001 by Charles Petzold
- //-----------------------------------------
- using System;
- using System.Drawing;
- using System.Windows.Forms;
-
- class PaintHello
- {
- public static void Main()
- {
- Form form = new Form();
- form.Text = "Hola Paint";
- form.BackColor = Color.White;
- form.Paint += new PaintEventHandler(MyPaintHandler);
-
- Application.Run(form);
- }
- static void MyPaintHandler(object objSender, PaintEventArgs pea)
- {
- Form form = (Form)objSender;
- Graphics grfx = pea.Graphics;
-
- grfx.DrawString("íHola, mundo!", form.Font, Brushes.Black, 0, 0);
- }
- }